home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / (gcc-1.37.π) / gdbfiles.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-01  |  353 b   |  16 lines  |  [TEXT/KAHL]

  1.  
  2. /* Alist matching source file names to GDB filenumbers.
  3.    Used in output_source_line.  */
  4.  
  5. struct gdbfile
  6. {
  7.   struct gdbfile *next;
  8.   char *name;            /* name of source file */
  9.   int filenum;            /* Assigned number */
  10.   int nlines;            /* # lines generated for this source file */
  11. };
  12.  
  13. /* Chain of all `struct gdbfile's.  */
  14.  
  15. extern struct gdbfile *gdbfiles;
  16.